Skip to content

Commit d9713a7

Browse files
committed
Updated backend/backend.dockerfile image pinnings to newer images
1 parent a79ed80 commit d9713a7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

backend/backend.dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM openstax/python3-base:20211117.170559 as base
1+
FROM openstax/python3-base:20220614.214431 as base
22

33
RUN apt-get update -qq \
44
&& apt-get install -y --no-install-recommends \
55
# required by psycopg2 at build and runtime
66
libpq-dev \
77
&& apt-get autoremove -y
88

9-
FROM openstax/python3-poetry:20211117.174217 as dev-builder
9+
FROM openstax/python3-poetry:20220614.214642 as dev-builder
1010

1111
# copy files
1212
COPY ./app /build/
@@ -20,7 +20,7 @@ RUN python -m venv /opt/venv && \
2020
pip install --no-cache-dir -U 'pip' && \
2121
poetry install --no-root --no-interaction
2222

23-
FROM openstax/python3-poetry:20211117.174217 as prod-builder
23+
FROM openstax/python3-poetry:20220614.214642 as prod-builder
2424

2525
# copy files
2626
COPY ./app /build/

0 commit comments

Comments
 (0)