FROM golang:latest RUN rm /app -rf RUN mkdir /app ADD . /app/ WORKDIR /app CMD ["/app/main", "8888"]