How to deploy Angular project using Docker

How to deploy Angular project using Docker

There are two ways to deploy Angular projects with Docker. One is server-side rendering, which is described in the official documentation. The other is to compile the node image and put it into the web server. Since we are in the node environment, it is most convenient to use express.

Create server.js

const express = require('express');

const app = express();
const config = {
  root: __dirname + '/dist',
  port: process.env.PORT || 4200
};

//Static resources app.use('/', express.static(config.root));

//All routes go to index.html
app.all('*', function (req, res) {
  res.sendfile(config.root + '/index.html');
});
app.listen(config.port, () => {
  console.log("running……");
})

Create Dockerfile

FROM node:13.3.0-alpine3.10

ENV PORT=4200 \
  NODE_ENV=production

# Install express and angular/cli
RUN npm install [email protected] -g \
  && npm install -g @angular/cli
# Create the app directory RUN mkdir -p /app
# Copy the code to the App directory COPY ./app
WORKDIR /app

# Install dependencies and build the program. Since I need to reverse proxy to a subdirectory, I add the base-href parameter RUN npm install && ng build --base-href /manage/ --prod

EXPOSE ${PORT}

ENTRYPOINT ["node", "/app/server.js"]

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed steps to deploy tomcat and java applications in docker
  • Detailed explanation of how to use Docker to deploy a web project and package it into an image file
  • Detailed steps for quickly deploying Node.js applications on Docker
  • Tutorial on deploying Python's Flask framework on Docker
  • Docker learning notes k8s deployment method
  • Methods for deploying MySQL services in Docker and the pitfalls encountered
  • Detailed explanation of Docker automatic deployment of tomcat
  • Detailed explanation of how to set up Go and deploy applications in Docker
  • How to deploy nextcloud network disk using docker
  • Installation and deployment of Zabbix based on Docker

<<:  Problems with changing password and connecting to Navicat when installing and using MySQL 8.0.16 under Windows 7

>>:  Example of how to embed H5 in WeChat applet webView

Recommend

Summary of basic operations for MySQL beginners

Library Operations Query 1.SHOW DATABASE; ----Que...

What I learned while building my own blog

<br />In one year of blogging, I have person...

XHTML tags have a closing tag

<br />Original link: http://www.dudo.org/art...

Split and merge tables in HTML (colspan, rowspan)

The code demonstrates horizontal merging: <!DO...

Mysql Workbench query mysql database method

Mysql Workbench is an open source database client...

vue-table implements adding and deleting

This article example shares the specific code for...

JavaScript implementation of verification code case

This article shares the specific code for JavaScr...

Solution to mysql login warning problem

1. Introduction When we log in to MySQL, we often...

Various ways to achieve the hollowing effect of CSS3 mask layer

This article introduces 4 methods to achieve mask...

How to modify mysql permissions to allow hosts to access

Enable remote access rights for mysql By default,...

Some notes on installing fastdfs image in docker

1. Prepare the Docker environment 2. Search for f...

Sample code for a simple seamless scrolling carousel implemented with native Js

There are many loopholes in the simple seamless s...

Install Windows Server 2019 on VMware Workstation (Graphic Tutorial)

If prompted to enter a key, select [I don’t have ...

How to retrieve password for mysql 8.0.22 on Mac

Mac latest version of MySQL 8.0.22 password recov...

15 important variables you must know about MySQL performance tuning (summary)

Preface: MYSQL should be the most popular WEB bac...