setting up docker to ts playwright service
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
FROM node:18-slim
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
|
||||
COPY . .
|
||||
|
||||
# Install Playwright dependencies
|
||||
RUN npx playwright install --with-deps
|
||||
|
||||
RUN npm run build
|
||||
|
||||
ARG PORT
|
||||
ENV PORT=${PORT}
|
||||
|
||||
EXPOSE ${PORT}
|
||||
|
||||
CMD [ "npm", "start" ]
|
||||
Reference in New Issue
Block a user