mirror of
https://github.com/bytedream/stream-bypass.git
synced 2025-05-10 04:35:14 +02:00
10 lines
156 B
Docker
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"]
|