udemy-go-microservices/authentication-service/authentication-service.dockerfile
2024-08-28 14:24:16 +02:00

9 lines
77 B
Docker

FROM alpine:latest
RUN mkdir /app
COPY authApp /app
CMD ["/app/authApp"]