Skip to content
Snippets Groups Projects
Dockerfile 158 B
Newer Older
Alexander Schoch's avatar
Alexander Schoch committed
FROM node:20
Alexander Schoch's avatar
Alexander Schoch committed

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