PHP Classes

File: frontend/Dockerfile

Recommend this page to a friend!
  Classes of Edward Paul   Task List   frontend/Dockerfile   Download  
File: frontend/Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Task List
Manage and share a list of tasks
Author: By
Last change:
Date: 21 days ago
Size: 145 bytes
 

Contents

Class file image Download
FROM node:18-alpine WORKDIR /app COPY package.json yarn.lock ./ RUN yarn install --ignore-engines COPY . . EXPOSE 3000 CMD ["yarn", "dev"]