Skip to content

Commit

Permalink
update base versions and packages
Browse files Browse the repository at this point in the history
  • Loading branch information
deronsmith committed Jun 5, 2024
1 parent 230fdcb commit 9ac6f27
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docker/angular/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ COPY docker/ /docker
WORKDIR /app

RUN apk update && \
apk upgrade && \
apk upgrade --available && \
apk add chromium

RUN npm install --force
Expand Down
4 changes: 2 additions & 2 deletions docker/flask/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ ENV PATH /cyan_flask:$PATH

EXPOSE 5001
RUN apk del busybox
#ENTRYPOINT ["tail", "-f", "/dev/null"]
CMD ["sh", "/docker/flask/start_flask.sh"]
ENTRYPOINT ["tail", "-f", "/dev/null"]
#CMD ["sh", "/docker/flask/start_flask.sh"]
4 changes: 2 additions & 2 deletions docker/mysql/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM mariadb:11.3.2
FROM mariadb:11.4.2

ENV APP_USER=mysql

# For Prisma scans:
RUN apt-get update && \
apt-get upgrade -y openssl libksba8
apt-get upgrade -y

# For Prisma scans:
RUN rm -rf /usr/local/bin/gosu
Expand Down
2 changes: 1 addition & 1 deletion docker/nginx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ARG config=nginx.conf
# ENV APP_USER=www-data

RUN apk update && \
apk upgrade
apk upgrade --available

RUN rm -rf /usr/share/nginx/html/* && \
rm /etc/nginx/conf.d/default.conf
Expand Down
6 changes: 4 additions & 2 deletions docker/redis/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FROM redis:7.2.4-alpine
FROM redis:7.2.5-alpine

RUN apk add --upgrade apk-tools
RUN apk upgrade --available
RUN apk update && \
apk upgrade --available

COPY docker/redis/docker-entrypoint.sh /usr/local/bin/
RUN chmod +x /usr/local/bin/docker-entrypoint.sh
RUN apk add --no-cache su-exec
Expand Down

0 comments on commit 9ac6f27

Please sign in to comment.