giteapages/Dockerfile

10 lines
86 B
Docker

FROM alpine
RUN apk add curl
COPY main .
EXPOSE 5555
ENTRYPOINT ["/main", "5555"]