mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-25 12:35:15 -04:00
14 lines
276 B
Docker
14 lines
276 B
Docker
FROM ubuntu:22.04
|
|
|
|
# author: Ole Schuett
|
|
|
|
WORKDIR /opt/cp2k-precommit
|
|
COPY . /opt/cp2k-precommit/
|
|
RUN ./install_requirements.sh
|
|
|
|
ARG REVISION
|
|
ENV REVISION=${REVISION}
|
|
|
|
CMD ["gunicorn", "--bind=:8080", "--workers=1", "--threads=8", "--timeout=0", "precommit_server:app"]
|
|
|
|
#EOF
|