Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 7e1e0972 authored by BIGAUD Nathan's avatar BIGAUD Nathan
Browse files

Testing alpine version

parent 89491699
No related branches found
No related tags found
1 merge request!46Draft: Docker deploy
FROM python:3.9-alpine
# Define workdir
WORKDIR /experiment
# Set up venv
ENV VIRTUAL_ENV=/opt/declearn
RUN python3 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
RUN apk --no-cache --update-cache add bash gcc gfortran build-base wget freetype-dev libpng-dev openblas-dev
# Install declearn
RUN pip install declearn[all]
# Run script
CMD ["bash", "experiment/run.sh"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment