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

Commit 640a231

Browse files
committed
update docker image with rust in build
bump version to 0.5.11
1 parent 713551e commit 640a231

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Dockerfile

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

33
RUN apk add --update \
44
&& apk add --no-cache build-base curl-dev linux-headers bash git\
@@ -9,11 +9,14 @@ COPY requirements.txt /root/swift_sharing/requirements.txt
99
COPY setup.py /root/swift_sharing/setup.py
1010
COPY swift_x_account_sharing /root/swift_sharing/swift_x_account_sharing
1111

12+
RUN apk add --no-cache rust cargo \
13+
&& rm -rf /var/cache/apk/*
14+
1215
RUN pip install --upgrade pip\
1316
&& pip install -r /root/swift_sharing/requirements.txt \
1417
&& pip install /root/swift_sharing
1518

16-
FROM python:3.8-alpine3.12
19+
FROM python:3.8-alpine3.13
1720

1821
RUN apk add --no-cache --update bash
1922

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)