Sign inSign up

tgrivel/simple-web-app

By tgrivel

Updated about 2 years ago

Node web app

Image
Web servers
0

129

tgrivel/simple-web-app repository overview

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

Tag summary

Content type

Image

Digest

sha256:fbec607af

Size

42.8 MB

Last updated

about 2 years ago

docker pull tgrivel/simple-web-app:1.0