Skip to content

Commit

Permalink
Fix Docker by adding openssl-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
imWildCat committed May 30, 2018
1 parent 5630a56 commit 289c462
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.6-alpine3.7 as build

RUN apk add --update --no-cache g++ gcc libxslt-dev make build-base curl-dev
RUN apk add --update --no-cache g++ gcc libxslt-dev make build-base curl-dev openssl-dev

RUN mkdir -p /var/www/scylla
WORKDIR /var/www/scylla
Expand All @@ -11,7 +11,7 @@ FROM python:3.6-alpine3.7

LABEL maintainer="WildCat <[email protected]>"

RUN apk add --update --no-cache libxslt-dev curl-dev
RUN apk add --update --no-cache libxslt-dev curl-dev openssl-dev

COPY --from=build /usr/local/lib/python3.6/site-packages/ /usr/local/lib/python3.6/site-packages/

Expand Down

0 comments on commit 289c462

Please sign in to comment.