new format wip
This commit is contained in:
+6
-6
@@ -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 ./
|
||||
|
||||
Reference in New Issue
Block a user