File size: 276 Bytes
181d9ef
 
8119345
 
181d9ef
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM node:20-slim

ARG INCLUDE_DB=true

USER root
RUN apt-get update && apt-get install -y \
  python3 make g++ curl gnupg && apt-get clean

RUN mkdir -p /home/user/.cache && chown -R 1000:1000 /home/user/.cache

#USER user
WORKDIR /app

EXPOSE 5173

# start bash
CMD ["bash"]