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