-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
90 lines (63 loc) · 2.32 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Etapa de build do frontend
FROM node:20 AS build-frontend
WORKDIR /app/frontend
ARG REACT_APP_LOCAL_IP
ENV REACT_APP_LOCAL_IP=${REACT_APP_LOCAL_IP}
COPY frontend/package.json ./
COPY frontend/package-lock.json ./
RUN npm install
COPY frontend ./
RUN npm run build
# Use uma imagem oficial do Go como base
FROM golang:1.22.5 AS build-backend
# Configure o diretório de trabalho
WORKDIR /app/backend
# Copie o código-fonte para o contêiner
COPY backend/go.mod ./
COPY backend/go.sum ./
RUN go mod download
COPY backend ./
# Executa o comando de build
RUN go build -o main .
# Imagem base do Ubuntu
FROM ubuntu:latest
# Atualize os pacotes e instale o PostgreSQL, nginx, npm e nodejs
RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get update -q \
&& apt-get install -y -q postgresql postgresql-contrib nginx bash curl \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
# Instalar a versão 20 do nodejs
RUN curl -sL https://deb.nodesource.com/setup_20.x -o nodesource_setup.sh
RUN bash nodesource_setup.sh && apt-get install -y nodejs
# Instalar o serve para servir a aplicação React
RUN npm install -g serve
# Exponha o diretório de dados do PostgreSQL para persistência
VOLUME /var/lib/postgresql/data
# Configurar o diretório de trabalho
WORKDIR /root/
# Inicie o PostgreSQL e crie o banco de dados
RUN service postgresql start && \
su postgres -c 'createdb documentmanager' && \
su - postgres -c "psql -U postgres -c \"ALTER USER postgres WITH PASSWORD 'postgres';\""
# Combinando front, back e database
# Copiar e configurar o backend
COPY --from=build-backend /app/backend/main ./
# Copiar e configurar o frontend
COPY --from=build-frontend /app/frontend/build /usr/share/nginx/html
# Configurar Nginx
COPY nginx.conf /etc/nginx/nginx.conf
# Copiar o script de variáveis de ambiente do backend
COPY backend/.initENV.sh /root/.initENV.sh
RUN chmod +x /root/.initENV.sh
# Copie o script de inicialização para o container
COPY start.sh /usr/local/bin/start.sh
# Dê permissão de execução ao script
RUN chmod +x /usr/local/bin/start.sh
# Configurar PostgreSQL
RUN mkdir -p /var/lib/postgresql/data
RUN chown -R postgres:postgres /var/lib/postgresql
# Expor as portas necessárias
EXPOSE 80 3450 5432 3000
# Defina o comando para iniciar o script de inicialização
CMD ["sh", "/usr/local/bin/start.sh"]