Skip to content

Commit

Permalink
Fix 'object dict can't be used in 'await' expression' (#894)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulineribeyre committed Apr 6, 2021
1 parent 7a5caa2 commit d6fe2b2
Show file tree
Hide file tree
Showing 3 changed files with 402 additions and 433 deletions.
13 changes: 7 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# To run: docker run --rm -d -v /path/to/fence-config.yaml:/var/www/fence/fence-config.yaml --name=fence -p 80:80 fence
# To check running container: docker exec -it fence /bin/bash

FROM quay.io/cdis/python-nginx:pybase3-1.4.2
FROM quay.io/cdis/python-nginx:pybase3-1.5.0

ENV appname=fence

RUN apk update \
&& apk add postgresql-libs postgresql-dev libffi-dev libressl-dev \
&& apk add linux-headers musl-dev gcc \
&& apk add curl bash git vim make lftp \
&& apk update && apk add openssh && apk add libmcrypt-dev
RUN pip install --upgrade pip
RUN apk add --update \
postgresql-libs postgresql-dev libffi-dev libressl-dev \
linux-headers musl-dev gcc g++ \
curl bash git vim make lftp \
openssh libmcrypt-dev

RUN mkdir -p /var/www/$appname \
&& mkdir -p /var/www/.cache/Python-Eggs/ \
Expand Down
Loading

0 comments on commit d6fe2b2

Please sign in to comment.