Skip to content
Snippets Groups Projects
Verified Commit b1964a70 authored by Maarten de Waard's avatar Maarten de Waard :angel:
Browse files

Update Alpine version, install requirements for python cryptography package

parent 2d6a1d78
No related branches found
No related tags found
No related merge requests found
venv
clusters
docs
FROM alpine:3.9
FROM alpine:3.12
LABEL name="OpenAppStack management"
LABEL version="4.0"
LABEL vendor1="Greenhost"
RUN apk --no-cache add \
cargo \
chromium \
chromium-chromedriver \
curl \
......@@ -17,9 +18,11 @@ RUN apk --no-cache add \
musl-dev \
openssh-client \
openssl-dev \
py3-pip \
python3-dev \
rsync
rsync \
rust
COPY ./requirements.txt /requirements.txt
RUN pip3 install -r /requirements.txt
RUN pip install -r /requirements.txt
RUN ln -s /usr/bin/python3 /usr/bin/python
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment