Skip to content
Snippets Groups Projects
Commit 978419c3 authored by Éloïs's avatar Éloïs
Browse files

Add new file

parent a8b6dcd0
No related branches found
No related tags found
No related merge requests found
FROM library/ubuntu:17.10
MAINTAINER elois <elois@ifee.fr>
ENV DEBIAN_FRONTEND noninteractive
ENV CUSTOM_VAR_ENV value
RUN apt-get update; \
apt-get install -y build-essential curl python-pip
# Cargo
RUN curl -sSf https://static.rust-lang.org/rustup.sh | sh
RUN useradd --create-home -s /bin/bash user
WORKDIR /home/user
ENV HOME /home/user
ENV USER user
# External scripts
ADD . /home/user
#RUN chmod +x external_script.sh
# Now act as `user`
USER user
# Install NodeJS
RUN ./external_script.sh $CUSTOM_VAR_ENV
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