mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-22 04:17:11 +02:00
Update base docker image and dependencies (#373)
This commit is contained in:
parent
5da0f1760d
commit
e4482a1edb
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM node:alpine as build
|
||||
FROM node:lts as build
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
|
@ -6,13 +6,13 @@ COPY package.json .
|
|||
COPY yarn.lock .
|
||||
COPY prisma/schema.prisma .
|
||||
|
||||
RUN yarn --frozen-lockfile
|
||||
RUN yarn --frozen-lockfile --no-cache --production
|
||||
|
||||
COPY . .
|
||||
|
||||
RUN yarn build
|
||||
|
||||
FROM node:alpine
|
||||
FROM node:lts
|
||||
|
||||
ENV PORT 3000
|
||||
EXPOSE 3000
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue