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

Commit d423206

Browse files
authored
Merge pull request #54 from CSCfi/devel
update docker image with rust in build
2 parents 713551e + feeeea1 commit d423206

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Dockerfile

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

33
RUN apk add --update \
4-
&& apk add --no-cache build-base curl-dev linux-headers bash git\
5-
&& apk add --no-cache libressl-dev libffi-dev\
4+
&& apk add --no-cache build-base curl-dev linux-headers bash git \
5+
&& apk add --no-cache libressl-dev libffi-dev rust cargo \
66
&& rm -rf /var/cache/apk/*
77

88
COPY requirements.txt /root/swift_sharing/requirements.txt
@@ -13,7 +13,7 @@ RUN pip install --upgrade pip\
1313
&& pip install -r /root/swift_sharing/requirements.txt \
1414
&& pip install /root/swift_sharing
1515

16-
FROM python:3.8-alpine3.12
16+
FROM python:3.8-alpine3.13
1717

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

swift_x_account_sharing/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22

33

44
__name__ = "swift_x_account_sharing"
5-
__version__ = "0.5.10"
5+
__version__ = "0.5.11"
66
__author__ = "CSC Developers"
77
__license__ = "MIT License"

0 commit comments

Comments
 (0)