-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dockerfile and docker-compose.yml
- Loading branch information
1 parent
8da9a16
commit abb8d91
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.build/ | ||
pat | ||
pat*.pkg | ||
docker-data/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
FROM golang:alpine as builder | ||
RUN apk add --no-cache git | ||
WORKDIR /src | ||
ADD go.mod go.sum ./ | ||
RUN go mod download | ||
ADD . . | ||
RUN go build -o /src/pat | ||
|
||
FROM gcr.io/distroless/static | ||
LABEL org.opencontainers.image.source=https://github.com/la5nta/pat | ||
LABEL org.opencontainers.image.description="Pat - A portable Winlink client for amateur radio email" | ||
LABEL org.opencontainers.image.licenses=MIT | ||
COPY --from=builder /src/pat /bin/pat | ||
USER 65534:65534 | ||
WORKDIR /app | ||
ENV XDG_CONFIG_HOME=/app | ||
ENV XDG_DATA_HOME=/app | ||
ENV XDG_STATE_HOME=/app | ||
EXPOSE 8080 | ||
ENTRYPOINT ["/bin/pat", "http", "--addr", ":8080"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
services: | ||
pat: | ||
build: . | ||
volumes: | ||
- ./docker-data:/app/pat | ||
ports: | ||
- 8080:8080 |