tsapi3/dockerfile

14 lines
189 B
Plaintext
Raw Permalink Normal View History

2024-11-25 12:51:41 -05:00
FROM arm32v7/node:alpine
#Create App Directory
WORKDIR /usr/src/api
#Install Dependencies
COPY package.json .
RUN npm install
#Bundle ap source
COPY . .
EXPOSE 3001
CMD ["npm", "start"]