8 lines
62 B
Docker
8 lines
62 B
Docker
FROM alpine:3
|
|
|
|
COPY ../main .
|
|
COPY ../public .
|
|
|
|
CMD ["main"]
|
|
|