9 lines
77 B
Docker
9 lines
77 B
Docker
FROM alpine:latest
|
|
|
|
RUN mkdir /app
|
|
|
|
COPY authApp /app
|
|
|
|
CMD ["/app/authApp"]
|
|
|