8 lines
81 B
Docker
8 lines
81 B
Docker
FROM iron/go
|
|
WORKDIR /dist
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 80
|
|
ENTRYPOINT ["/dist/node-status"]
|