mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-09 20:12:26 +10:00
20 lines
250 B
Docker
20 lines
250 B
Docker
FROM mcr.microsoft.com/playwright:focal
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./package*.json .
|
|
|
|
RUN npm config set unsafe-perm true
|
|
|
|
RUN npm ci
|
|
|
|
RUN npm install sharp --ignore-scripts=false
|
|
|
|
COPY . .
|
|
|
|
RUN npm run build
|
|
|
|
EXPOSE 3000
|
|
EXPOSE 3100
|
|
|
|
CMD [ "npm", "start" ] |