Newer
Older
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