new format wip

This commit is contained in:
Dylan Pizzo
2026-06-10 21:47:30 -04:00
parent 07595c31ef
commit 876404d8f5
45 changed files with 10893 additions and 144129 deletions
+6 -6
View File
@@ -1,15 +1,15 @@
# Installs Node image
FROM node:18-alpine as base
FROM node:20-alpine as base
# sets the working directory for any RUN, CMD, COPY command
WORKDIR /app
# Install Python and pip
RUN apk add --update python3 py3-pip
RUN python3 -m ensurepip
RUN pip3 install --no-cache --upgrade pip setuptools
# # Install Python and pip
# RUN apk add --update python3 py3-pip
# RUN python3 -m ensurepip
# RUN pip3 install --no-cache --upgrade pip setuptools
COPY ./data ./data
# COPY ./data ./data
# Copies stuff to cache for install
COPY ./package.json ./package-lock.json tsconfig.json ./