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

[OPS-7732] working version #9

Merged
merged 4 commits into from
Sep 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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