Files

19 lines
302 B
Docker
Raw Permalink Normal View History

2025-02-24 18:53:25 -05:00
FROM golang:1.23.6-alpine
WORKDIR /app
RUN mkdir -p /app/data
COPY sqlite-server/ ./
COPY shared/ ./shared/
RUN go mod edit -replace shared=/app/shared
# Download dependencies
RUN go mod tidy
RUN go mod download
RUN go build -o sqlite-server .
2025-02-28 19:11:16 -05:00
EXPOSE 15521 15522
2025-02-24 18:53:25 -05:00
CMD ["./sqlite-server", "15521"]