Mentions légales du service

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

Testing ubuntu set up

parent 7e1e0972
No related branches found
No related tags found
1 merge request!46Draft: Docker deploy
FROM ubuntu:20.04
# Define workdir
WORKDIR /experiment
# Get basics
RUN apt-get update && \
apt-get install -y python3 \
python3-pip \
git \
gcc
# Set up venv
ENV VIRTUAL_ENV=/opt/declearn
RUN python3 -m venv $VIRTUAL_ENV
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
# Install declearn
RUN pip install declearn[all]
# Create env variables
# 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