Skip to content
This repository has been archived by the owner on Mar 8, 2024. It is now read-only.

Commit

Permalink
[OPS-7732] working version (#9)
Browse files Browse the repository at this point in the history
* add libffi

* beep

* h

* working
  • Loading branch information
teodorescuserban committed Sep 14, 2021
1 parent efe3fa5 commit 3f3d662
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,13 @@ jobs:
build:
runs-on: ubuntu-latest
steps:

- name: Checkout code
id: checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
submodules: true

- name: Tag Info
id: tag_info
Expand Down
11 changes: 7 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ COPY . .

RUN apk add --update-cache \
git \
py-lxml && \
pip -q install --upgrade \
py-lxml \
libffi-dev && \
pip install --upgrade \
pip \
gunicorn \
html5lib \
xlrd==1.2.0 \
Expand All @@ -19,8 +21,9 @@ RUN apk add --update-cache \
mkdir -p /var/log/dataproxy && \
touch /var/log/dataproxy/dataproxy.access.log && \
touch /var/log/dataproxy/dataproxy.error.log && \
git submodule init dataproxy && \
git submodule update dataproxy && \
# this is done through actions./checkout && \
# git submodule init dataproxy && \
# git submodule update dataproxy && \
apk add --update-cache \
build-base \
python-dev && \
Expand Down

0 comments on commit 3f3d662

Please sign in to comment.