add dockerfile

This commit is contained in:
Stanislaw
2022-06-15 22:33:33 +02:00
parent 089e13b9ff
commit 9364c1767a
2 changed files with 8 additions and 0 deletions

View File

@@ -3,6 +3,8 @@ name: Deploy
on:
push:
branches: ["canary"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
# syntax=docker/dockerfile:1
FROM node:16.15.1-alpine
WORKDIR /app
COPY ./ ./
RUN npm install
CMD ["node", "index.js"]