Import repositories from gitlab
This commit is contained in:
11
strapi/Dockerfile
Normal file
11
strapi/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM node:20.10-alpine AS builder
|
||||
|
||||
WORKDIR /app
|
||||
COPY package.json yarn.lock ./
|
||||
RUN yarn
|
||||
|
||||
COPY ./ ./
|
||||
RUN yarn build
|
||||
|
||||
ENTRYPOINT ["yarn", "strapi"]
|
||||
CMD ["start"]
|
||||
Reference in New Issue
Block a user