Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
EliseCastle23 committed Jan 21, 2025
1 parent 3c57b15 commit 7ad6a0b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ WORKDIR /${appname}
# Builder stage
FROM base AS builder

RUN dnf install -y openssl-devel
RUN dnf install -y openssl-devel \
bzip2-devel \
libffi-devel \
postgresql-devel

USER gen3

Expand All @@ -31,6 +34,8 @@ ENV PATH="$(poetry env info --path)/bin:$PATH"
# Final stage
FROM base

RUN dnf install -y openssl-devel

RUN yum install -y postgresql-libs

COPY --from=builder /${appname} /${appname}
Expand Down

0 comments on commit 7ad6a0b

Please sign in to comment.