mirror of
https://github.com/quay/quay.git
synced 2025-04-18 10:44:06 +03:00
20 lines
508 B
Docker
20 lines
508 B
Docker
# -*- mode: dockerfile -*-
|
|
# vi: set ft=dockerfile :
|
|
|
|
FROM quay.io/quay/quay-base:latest
|
|
|
|
WORKDIR $QUAYDIR
|
|
|
|
COPY requirements.txt requirements-tests.txt ./
|
|
|
|
# Put the virtualenv outside the source directory. This lets us mount
|
|
# the Quay source as a volume for local development.
|
|
RUN virtualenv --distribute /venv \
|
|
&& /venv/bin/pip install -r requirements.txt \
|
|
&& /venv/bin/pip install -r requirements-tests.txt \
|
|
&& /venv/bin/pip freeze
|
|
|
|
ENV PATH /venv/bin:${PATH}
|
|
|
|
RUN ln -s $QUAYCONF /conf
|