FROM node:14-alpine
WORKDIR /usr/src/app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 8080
CMD [ "node", "app.js" ]
docker build . -t tgrivel/simple-web-app:1.0
docker push tgrivel/simple-web-app:1.0
Run and set a message with the "MESSAGE" environment variable
Content type
Image
Digest
sha256:fbec607af…
Size
42.8 MB
Last updated
about 2 years ago
docker pull tgrivel/simple-web-app:1.0