Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,9 @@ WORKDIR /app

RUN mkdir -p tmp/pids

# Install postgresql14-client
RUN apk update && apk add postgresql14-client && rm -rf /var/cache/apk/*

# Copy built application from previous stage
COPY --link --from=build /app/ /app/

Expand Down
Loading