Content commit

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-04-14 10:50:34 +01:00
parent f59d24d4ae
commit 318637019e
87 changed files with 2835 additions and 92 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 4173
CMD [ "npm", "run", "preview", "--", "--host" ]