Mentions légales du service

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

Simplifying to single Dockerfile

parent d24f3f4c
No related branches found
No related tags found
1 merge request!46Draft: Docker deploy
File moved
FROM python:3.9-alpine
# Define workdir
WORKDIR /experiment
## Set up venv
RUN python -m venv ~/.venvs/declearn \
&& source ~/.venvs/declearn/bin/activate
# Install declearn
RUN pip install declearn[all]
# Create env variables
ENV script client.py
ENV client_name client_0
ENV data_folder data
ENV output_folder output
# Run script
CMD ["python", "${script}","${client_name}","${data_folder}","${output_folder}"]
\ No newline at end of file
FROM ubuntu:20.04
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]
# Create env variables
# Run script
CMD ["bash", "experiment/run.sh"]
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