robot-control-manager/Dockerfile

8 lines
97 B
Docker

FROM golang:latest
WORKDIR /app
COPY ./main /app/main
COPY ./public /app/public
CMD ["./main"]