Skip to content
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
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ WORKDIR /code/

# Install Python packages for this project.
COPY requirements.txt /code/requirements.txt
RUN apk add git && \
pip install -r requirements.txt && \
apk del git
RUN apk add git build-base && \
pip install "setuptools<66" && \
pip install --no-build-isolation -r requirements.txt && \
apk del git build-base

# Set environment variables.
ENV FLASK_ENV development
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
aip-site-generator==0.6.0
# Corresponds to v0.6.6.
git+https://github.com/aip-dev/site-generator.git@c5cb78b347d82ad6244c0f4954f3f219baaa26db#egg=aip-site-generator
Loading