Difference between revisions of "Dockerfile examples"
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
− | [[FROM]] ubuntu | + | [[FROM]] --platform=linux/amd64 ubuntu |
RUN apt install -y nginx | RUN apt install -y nginx | ||
Revision as of 16:15, 16 July 2024
Dockerfile
examples:
FROM node:carbon WORKDIR /srv/app COPY . . RUN npm install --only=production ENTRYPOINT [ "npm", "start" ]
FROM --platform=linux/amd64 ubuntu RUN apt install -y nginx
Related terms
See also
Dockerfile: FROM, RUN, CMD, ENTRYPOINT, WORKDIR, COPY, ADD, USER, ENV, ARG, HEALTHCHECK
,hadolint, LABEL, EXPOSE
Advertising: