This commit is contained in:
Adam 2023-06-21 17:04:19 -04:00
parent 98cef012af
commit ee60d47cc2
2 changed files with 11 additions and 0 deletions

6
lightning/Dockerfile Normal file
View file

@ -0,0 +1,6 @@
# syntax=docker/dockerfile:experimental
FROM node:alpine
COPY . .
CMD npm run start
EXPOSE 3000

5
lightning/build Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
pnpm install &&
pnpm run build &&
docker build -t lightning .