switch to pnpm
This commit is contained in:
parent
3f605dc15f
commit
b9dedbc603
4
.gitignore
vendored
4
.gitignore
vendored
@ -144,3 +144,7 @@ dist
|
||||
# Built Visual Studio Code Extensions
|
||||
*.vsix
|
||||
|
||||
# lock files
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
|
||||
|
11
Dockerfile
11
Dockerfile
@ -1,9 +1,10 @@
|
||||
FROM node:alpine
|
||||
FROM fascinated/docker-images:node-pnpm-latest
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
COPY package.json pnpm-lock.yaml ./
|
||||
RUN pnpm install
|
||||
COPY . .
|
||||
RUN npx tsc -b
|
||||
RUN pnpm run build
|
||||
ENV PORT=80
|
||||
EXPOSE 80
|
||||
CMD [ "npm", "start" ]
|
||||
CMD [ "pnpm", "start" ]
|
1802
package-lock.json
generated
1802
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
1192
pnpm-lock.yaml
generated
Normal file
1192
pnpm-lock.yaml
generated
Normal file
File diff suppressed because it is too large
Load Diff
0
src/services/beatleader.ts
Normal file
0
src/services/beatleader.ts
Normal file
Loading…
Reference in New Issue
Block a user