Skip to content
This repository was archived by the owner on Aug 4, 2021. It is now read-only.

Commit e53a99b

Browse files
committed
update docker file with alpine 3.12 and small fix
1 parent 70c3251 commit e53a99b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7-alpine3.9 as BACKEND
1+
FROM python:3.7-alpine3.12 as BACKEND
22

33
RUN apk add --update \
44
&& apk add --no-cache build-base curl-dev linux-headers bash git\
@@ -13,15 +13,15 @@ RUN pip install --upgrade pip\
1313
&& pip install -r /root/swift_upload_runner/requirements.txt \
1414
&& pip install /root/swift_upload_runner
1515

16-
FROM python:3.7-alpine3.9
16+
FROM python:3.7-alpine3.12
1717

1818
RUN apk add --no-cache --update bash
1919

2020
LABEL maintainer "CSC Developers"
2121
LABEL org.label-schema.schema-version="1.0"
2222
LABEL org.label-schema.vcs-url="https://github.com/CSCFI/swift-upload-runner"
2323

24-
COPY --from=BACKEND usr/local/lib/python3.7 usr/local/lib/python3.7/
24+
COPY --from=BACKEND /usr/local/lib/python3.7 /usr/local/lib/python3.7/
2525

2626
COPY --from=BACKEND /usr/local/bin/gunicorn /usr/local/bin/
2727

0 commit comments

Comments
 (0)