uhub/build-windows.dockerfile
2019-01-12 04:06:05 +01:00

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"]