bw-hspc-contest-env/sandbox/Dockerfile

39 lines
686 B
Docker
Raw Normal View History

2023-05-09 16:06:19 -04:00
FROM ubuntu:22.04
WORKDIR /app
RUN apt-get update
RUN apt-get install curl -y
RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && apt-get install -y nodejs
RUN apt-get install git -y
RUN git config --global user.name "Admin"
RUN git config --global user.email noemail@example.com
WORKDIR /opt
RUN apt-get install wget -y
RUN wget -O java.tar.gz https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.7%2B7/OpenJDK17U-jdk_x64_linux_hotspot_17.0.7_7.tar.gz
RUN tar -xzvf java.tar.gz
RUN rm java.tar.gz
ENV JAVA_PATH=/opt/jdk-17.0.7+7/bin
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
2023-08-26 13:46:59 -04:00
CMD ["node", "build"]