Skip to content

Commit

Permalink
Add gettext lib to Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Alschn committed May 26, 2024
1 parent 3bb2016 commit d0f41d0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ ENV PATH="/.venv/bin:$PATH"
RUN \
apk update && \
apk upgrade && \
apk add bash postgresql-libs && \
apk add bash postgresql-libs gettext && \
rm -rf /var/cache/apk/*

COPY . /app/backend
Expand Down
2 changes: 1 addition & 1 deletion deployment/railway/Dockerfile.api
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ COPY --from=compile-image /app/backend/.venv /app/backend/.venv
COPY backend /app/backend/

RUN \
apk add bash postgresql-libs && \
apk add bash postgresql-libs gettext && \
rm -rf /var/cache/apk/*

WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion deployment/railway/Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ COPY --from=compile-image /app/backend/.venv /app/backend/.venv
COPY backend /app/backend/

RUN \
apk add bash postgresql-libs && \
apk add bash postgresql-libs gettext && \
rm -rf /var/cache/apk/*

WORKDIR /app/backend

0 comments on commit d0f41d0

Please sign in to comment.