Skip to content

Commit

Permalink
Add Dockerfile and docker-compose.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
martinhpedersen committed Oct 7, 2023
1 parent 8da9a16 commit abb8d91
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.build/
pat
pat*.pkg
docker-data/
20 changes: 20 additions & 0 deletions Dockerfile
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"]
7 changes: 7 additions & 0 deletions docker-compose.yml
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

0 comments on commit abb8d91

Please sign in to comment.