Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 6b63e891 authored by Martin Déclert's avatar Martin Déclert :cd:
Browse files

Suppression du Dockerfile

parent 5e53fb4d
No related branches found
No related tags found
No related merge requests found
FROM ubuntu:20.04
ARG user=martin
ARG uid=1000
EXPOSE 8000/tcp
EXPOSE 8000/udp
RUN echo "nameserver 8.8.8.8" > /etc/resolv.conf \
&& echo "nameserver 8.8.4.4" >> /etc/resolv.conf
RUN rm -f /etc/localtime \
&& ln -s /usr/share/zoneinfo/Europe/Paris /etc/localtime
RUN apt update && apt upgrade -y
RUN apt install -y git vim curl wget software-properties-common unzip tar
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
RUN apt install -y nodejs
RUN npm install -g sass
RUN useradd -G www-data,root -u $uid -d /home/$user $user
RUN mkdir -p /home/${user} && chown -R ${user}:${user} /home/${user}
USER ${user}
WORKDIR /var/www/website
\ No newline at end of file
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