Skip to content

Commit

Permalink
fix building with Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Mar 20, 2021
1 parent 5680cc9 commit 8e543a2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ FROM ubuntu:latest

RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y gcc-mingw-w64-i686 make git
apt-get install -y gcc-mingw-w64-i686 make git python3-pip && \
python3 -m pip install pyjson5

RUN mkdir /app
WORKDIR /app
ADD .git .git
ADD cfg cfg
ADD src src
ADD test test
ADD Makefile Makefile
Expand Down

0 comments on commit 8e543a2

Please sign in to comment.