notatio/Dockerfile

33 lines
918 B
Docker
Raw Normal View History

2023-11-21 20:56:18 +00:00
# Set the base image
2023-11-21 21:14:22 +00:00
FROM docker.io/library/golang:1.21-alpine3.18 as builder
2023-11-21 04:10:40 +00:00
RUN apk --no-cache add ca-certificates git
2023-11-21 20:56:18 +00:00
# Set the working directory
WORKDIR /app
# Copy the Go application source code to the container
COPY . .
# Build the Go application
RUN go build -o notatio
# Switch to the base Alpine image
2023-11-21 20:59:09 +00:00
FROM docker.io/library/alpine:3.18.4
2023-11-21 20:56:18 +00:00
# Set the user and working directory
RUN adduser -D notatio
USER notatio
2023-11-21 20:56:18 +00:00
WORKDIR /home/notatio
2023-11-21 04:10:40 +00:00
2023-11-21 20:56:18 +00:00
# Copy necessary files to the user's directory
COPY --from=builder /app/notatio .
COPY --from=builder /app/editor_templates ./editor_templates
COPY --from=builder /app/templates ./templates
COPY --from=builder /app/static ./static
2023-11-21 04:10:40 +00:00
2023-11-21 20:56:18 +00:00
# Wait for 10 seconds before starting the application
ENTRYPOINT ["sh", "-c", "sleep 10 && cd && ./notatio"]
2023-11-21 04:10:40 +00:00
LABEL name=notatio version=latest
2023-11-21 20:59:09 +00:00
EXPOSE 9991
HEALTHCHECK --interval=5m --timeout=3s \
CMD curl -f http://localhost/ || exit 1