Explanation of the process of docker packaging node project

Explanation of the process of docker packaging node project

As a backend programmer, sometimes I have to tinker with frontend stuff. So, my boss asked me to package the front-end project into a docker package. Okay, let’s stop talking nonsense. To install the docker package, you must first have a dockerfile, so let's write docker first

Dockerfile

FROM daocloud.io/node:7
MAINTAINER abel.yang <[email protected]>
LABEL Description="This image is built for web"
RUN mkdir -p /opt/apps/epp
COPY . /opt/apps/epp
WORKDIR /opt/apps/epp/epp-web/server
ENV LANG C.UTF-8
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo Asia/Shanghai > /etc/timezone
EXPOSE 3001
CMD [ "npm", "start" ]

Okay, the Dockerfile is written and executes the image creation command.

myeppweb is the name of the mirror I typed

docker build -t myeppweb .
// Note. Don't forget.

start up

At this time, execute docker images to view the successfully packaged image

Execute the startup command:

docker run -d -p 3001:3001 myeppweb

analyze

Okay, let me explain the command of dockerfile

Package the image based on the image of daocloud.io/node:7

FROM daocloud.io/node:7

This is the maintainer's information.

MAINTAINER abel.yang <[email protected]>
LABEL Description="This image is built for web"

Create a folder and move all the files in the current folder into the new folder. (The files in my current folder are the front-end executable code. You can run the code by simply typing npm run start)

RUN mkdir -p /opt/apps/epp
COPY . /opt/apps/epp

Set the current path, that is, all the following commands are executed in this path

WORKDIR /opt/apps/epp/epp-web/server

Set the mirror time and time zone

ENV LANG C.UTF-8
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && echo Asia/Shanghai > /etc/timezone

Exposed Ports

EXPOSE 3001

Start the node

CMD [ "npm", "start" ]

Well, this article just records the packaging process.

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM. If you want to learn more about this, please check out the following links

You may also be interested in:
  • Analysis of Springboot microservice packaging Docker image process
  • A brief analysis of SpringBoot packaging and uploading to docker and implementing multi-instance deployment (IDEA version)
  • Detailed explanation of how to use Docker to deploy a web project and package it into an image file
  • Using jib to package docker images
  • Detailed explanation of Docker container basic system image packaging
  • How to implement packaging in docker python
  • Detailed explanation of Docker package python commands
  • How to update, package, and upload Docker containers to Alibaba Cloud

<<:  js dynamically implements table addition and deletion operations

>>:  Vue implements login type switching

Recommend

Sample code for implementing 3D book effect with CSS

Without further ado, let's take a look at the...

Solution for adding iptables firewall policy to MySQL service

If your MySQL database is installed on a centos7 ...

HTML weight loss Streamline HTML tags to create web pages

HTML 4 HTML (not XHTML), MIME type is text/html, ...

Vue implements image drag and drop function

This article example shares the specific code of ...

How to implement Svelte's Defer Transition in Vue

I recently watched Rich Harris's <Rethinki...

Practical method of deleting a row in a MySql table

First, you need to determine which fields or fiel...

Introduction to MySQL MHA operation status monitoring

Table of contents 1. Project Description 1.1 Back...

Detailed explanation of Mysql transaction processing

1. MySQL transaction concept MySQL transactions a...

MySQL Constraints Super Detailed Explanation

Table of contents MySQL Constraint Operations 1. ...

Tutorial on installing MySQL 5.7.18 using RPM package

system: CentOS 7 RPM packages: mysql-community-cl...

Detailed graphic tutorial on how to enable remote secure access with Docker

1. Edit the docker.service file vi /usr/lib/syste...

CSS to achieve the image hovering mouse folding effect

CSS to achieve the image hovering mouse folding e...

Detailed explanation of MySQL covering index

concept If the index contains all the data that m...

CSS Sticky Footer Implementation Code

This article introduces the CSS Sticky Footer imp...

WML tag summary

Structure related tags ---------------------------...