wpw-final/docker/Dockerfile
2022-12-02 20:40:23 +07:00

7 lines
No EOL
188 B
Docker

FROM alpine:latest
WORKDIR /app
# yes, cheat. Ideally I would use multi stage build here
# but in this case I'll just throw this away.
COPY server /app/server
ENTRYPOINT [ "/app/server" ]