Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions services/workshop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.


FROM python:3.8-alpine3.13 as build
FROM python:3.8-alpine3.15 as build
# Not using alpine based on suggestion
# https://pythonspeed.com/articles/alpine-docker-python/

Expand All @@ -35,7 +35,7 @@ WORKDIR /app
COPY ./ /app
RUN pip install wheel && pip wheel . --wheel-dir /app/wheels

FROM python:3.8-alpine
FROM python:3.8-alpine3.15
ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.7.3/wait /wait
RUN chmod +x /wait
COPY --from=build /app /app
Expand Down