Skip to content
Snippets Groups Projects
Dockerfile 298 B
Newer Older
Alexander Schoch's avatar
Alexander Schoch committed
FROM eu.gcr.io/vseth-public/base:foxtrott

RUN apt install -y curl
RUN curl -sL https://deb.nodesource.com/setup_18.x | bash -
RUN apt install -y nodejs

RUN mkdir -p /website
WORKDIR /website
COPY . /website

RUN npm install
RUN npm run build

COPY cinit.yml /etc/cinit.d/website.yml

EXPOSE 3000