mirror of
https://github.com/logos-co/wadoku.git
synced 2025-01-12 07:04:22 +00:00
17 lines
423 B
Plaintext
17 lines
423 B
Plaintext
|
# Specifies a parent image
|
|||
|
FROM golang:1.18
|
|||
|
|
|||
|
# Create the app directory to hold app’s source code
|
|||
|
|
|||
|
ADD ./waku-lightpush /go/bin/waku-lightpush
|
|||
|
RUN mkdir -p /go/bin/out
|
|||
|
|
|||
|
ADD ./lightpush.go /go/src/lightpush.go
|
|||
|
ADD go.mod go.sum /go/src/
|
|||
|
|
|||
|
# Tells Docker which network port your container listens on
|
|||
|
EXPOSE 8080
|
|||
|
|
|||
|
# Specifies the executable command that runs when the container starts
|
|||
|
ENTRYPOINT [ "/go/bin/waku-lightpush" ]
|