PowerShell Cheat Sheet PDF
PowerShell Cheat Sheet PDF
# the next line sets the base image for this image
# the base image is also based on a Dockerfile
# see:
https://hub.docker.com/layers/library/node/18-alpine/images/sha256-
a0b787b0d53feacfa6d606fb555e0dbfebab30573277f1fe25148b05b66fa097
# node provides official images for Node.js and
# alpine: a lightweight Linux distribution to reduce image size
FROM node:18-alpine
# the EXPOSE instruction does not actually expose the port 300 of
this image
# this is documentation so that we know which port we need to expose
# we do this when starting the container with the --publish flag
EXPOSE 3000