32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
FROM node:20-bullseye AS build
 | 
						|
 | 
						|
RUN node -v
 | 
						|
 | 
						|
# make the 'app' folder the current working directory
 | 
						|
WORKDIR /app
 | 
						|
 | 
						|
COPY . .
 | 
						|
FROM nginx
 | 
						|
COPY --from=build /app/build/ /usr/share/nginx/html/
 | 
						|
 | 
						|
RUN rm /etc/nginx/conf.d/default.conf
 | 
						|
COPY _nginx/nginx.conf /etc/nginx/conf.d
 | 
						|
 | 
						|
 | 
						|
 | 
						|
FROM ubuntu:22.04
 | 
						|
 | 
						|
USER root
 | 
						|
 | 
						|
RUN apt-get update ;\
 | 
						|
    apt-get -y install lsb-release procps wget sudo git apt-transport-https ca-certificates curl gnupg2 software-properties-common 
 | 
						|
 | 
						|
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg ;\
 | 
						|
    echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian bookworm stable" | sudo tee /etc/apt/sources.list.d/docker.list ;\
 | 
						|
    apt-get update ;\
 | 
						|
    apt-get -y install docker-ce docker-ce-cli docker-ce-rootless-extras docker-buildx-plugin
 | 
						|
 | 
						|
RUN sudo curl -sL https://deb.nodesource.com/setup_20.x -o nodesource_setup.sh ;\
 | 
						|
    sudo bash nodesource_setup.sh ;\
 | 
						|
    apt-get -y install nodejs
 |