tsapi3/dockerfile
2024-11-25 12:51:41 -05:00

14 lines
189 B
Plaintext

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"]