2023-11-21 14:56:18 -06:00
|
|
|
# Set the base image
|
2024-07-02 14:14:03 -05:00
|
|
|
FROM docker.io/library/golang:1.21-alpine3.20 as builder
|
2023-11-20 22:10:40 -06:00
|
|
|
RUN apk --no-cache add ca-certificates git
|
2023-11-21 14:56:18 -06: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
|
2024-07-02 14:14:03 -05:00
|
|
|
FROM docker.io/library/alpine:3.20.1
|
2023-11-21 14:56:18 -06:00
|
|
|
|
|
|
|
# Set the user and working directory
|
|
|
|
RUN adduser -D notatio
|
2023-11-21 12:45:52 -06:00
|
|
|
USER notatio
|
2023-11-21 14:56:18 -06:00
|
|
|
WORKDIR /home/notatio
|
2023-11-20 22:10:40 -06:00
|
|
|
|
2023-11-21 14:56:18 -06: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-20 22:10:40 -06:00
|
|
|
|
|
|
|
|
2023-11-21 14:56:18 -06:00
|
|
|
# Wait for 10 seconds before starting the application
|
2023-11-21 14:03:30 -06:00
|
|
|
ENTRYPOINT ["sh", "-c", "sleep 10 && cd && ./notatio"]
|
2023-11-20 22:10:40 -06:00
|
|
|
LABEL name=notatio version=latest
|
2023-11-21 14:59:09 -06:00
|
|
|
EXPOSE 9991
|