9 lines
77 B
Docker
9 lines
77 B
Docker
FROM alpine:3
|
|
|
|
COPY ../main .
|
|
COPY ../public .
|
|
COPY ../.env .
|
|
|
|
CMD ["main"]
|
|
|