stream-bypass/Dockerfile
2021-09-01 21:42:58 +02:00

10 lines
156 B
Docker

FROM alpine:latest
RUN apk --no-cache add python3 nodejs npm
RUN npm install -g typescript sass
COPY [".", "."]
CMD ["python3", "build.py", "-b", "-c"]