hedgehog / Dockerfile
XCAPI's picture
Update Dockerfile
65b2845 verified
raw
history blame contribute delete
153 Bytes
FROM alpine:latest
WORKDIR /app
COPY workers /app/workers
COPY admin.html /app/admin.html
RUN chmod +x /app/workers
EXPOSE 7860
CMD ["/app/workers"]