6 lines
154 B
Docker
6 lines
154 B
Docker
FROM ubuntu:18.04
|
|
RUN apt-get update && apt-get install -y build-essential mingw-w64 cmake unzip git
|
|
WORKDIR /app
|
|
COPY . .
|
|
ENTRYPOINT ["./entrypoint.sh"]
|