Skip to content

Commit

Permalink
updated packages version in dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
sepehr toof authored and sepehr toof committed Jun 29, 2024
1 parent 100ed3e commit 265e6ee
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Backend/auth_service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apk update && apk add --no-cache \
py3-pip=24.0-r2 \
postgresql16=16.3-r0 \
postgresql16-client=16.3-r0 \
bash=5.2.26-r0 && \
bash=5.2.26-r0 curl=8.8.0-r0 openssl=3.3.1-r1 curl=8.8.0-r0 && \
mkdir /run/postgresql && \
chown -R postgres:postgres /run/postgresql
WORKDIR /app/
Expand Down
2 changes: 1 addition & 1 deletion Backend/rabbitmq/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.20

RUN apk add --no-cache erlang=26.2.5-r0 openssl=3.3.1-r0 bash=5.2.26-r0 curl=8.7.1-r0 xz=5.6.1-r3
RUN apk add --no-cache erlang=26.2.5-r0 openssl=3.3.1-r1 bash=5.2.26-r0 curl=8.8.0-r0 xz=5.6.1-r3

# Set environment variable for RabbitMQ installation directory
RUN addgroup -S rabbitmq && adduser -S rabbitmq -G rabbitmq
Expand Down
5 changes: 4 additions & 1 deletion Backend/user_management/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@ ENV PYTHONUNBUFFERED=1
ENV LANG=C.UTF-8

# Update and install dependencies
RUN apk update && apk add --no-cache python3=3.12.3-r1 py3-pip=24.0-r2 postgresql16=16.3-r0 postgresql16-client=16.3-r0 bash=5.2.26-r0 supervisor=4.2.5-r5 curl=8.7.1-r0
RUN apk update && apk add --no-cache python3=3.12.3-r1 py3-pip=24.0-r2 \
postgresql16=16.3-r0 postgresql16-client=16.3-r0 \
bash=5.2.26-r0 supervisor=4.2.5-r5 curl=8.8.0-r0 \
openssl=3.3.1-r1 bash=5.2.26-r0
# Set work directory
RUN mkdir /run/postgresql && \
chown postgres:postgres /run/postgresql && \
Expand Down
2 changes: 1 addition & 1 deletion Frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.20 AS frontend

RUN apk update && apk add --no-cache nginx=1.26.1-r0 openrc=0.54-r1 openssl=3.3.1-r0 openssh=9.7_p1-r3 curl=8.7.1-r0 bash=5.2.26-r0
RUN apk update && apk add --no-cache nginx=1.26.1-r0 openrc=0.54-r1 openssl=3.3.1-r1 openssh=9.7_p1-r3 curl=8.8.0-r0 bash=5.2.26-r0

RUN addgroup -S www && adduser -D -S -G www www && \
mkdir -p /www && \
Expand Down

0 comments on commit 265e6ee

Please sign in to comment.