Skip to content

Commit

Permalink
installing newer version of bash, newer base
Browse files Browse the repository at this point in the history
Signed-off-by: Duncan Ragsdale <88173870+Thistleman@users.noreply.github.com>
  • Loading branch information
Thistleman committed May 2, 2024
1 parent a5b82b8 commit 0edd1a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1.0.0-experimental
FROM python:3.8-slim as base
FROM python:3.9-slim as base

SHELL ["/bin/bash", "-c"]

Expand All @@ -10,8 +10,8 @@ EXPOSE 5000

FROM base as python-deps

RUN apt-get update -qq && apt-get install -y ssh git openssl
RUN apt-get upgrade -y openssl
RUN apt-get update -qq && apt-get install -y ssh git openssl bash
RUN apt-get upgrade -y openssl bash

# require a private key to access private github repositories
ARG SSH_PRIVATE_KEY
Expand Down
1 change: 1 addition & 0 deletions Dockerfile.worker
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ FROM python:3.9-slim as base
SHELL ["/bin/bash", "-c"]

RUN apt-get update -qq && apt-get install -y ssh git bash
RUN apt-get upgrade -y bash

# require a private key to access private github repositories
ARG SSH_PRIVATE_KEY
Expand Down

0 comments on commit 0edd1a7

Please sign in to comment.