copy pico to dockerfile

This commit is contained in:
dylan 2023-10-29 13:28:00 -07:00
parent db7d41aa15
commit 1496df0c5d

View File

@ -12,6 +12,8 @@ ENV DB_PASSWORD=password
ENV DB_PORT=5432 ENV DB_PORT=5432
ENV DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME} ENV DATABASE_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_HOST}:${DB_PORT}/${DB_NAME}
COPY ./pico8 ./pico8
# Copies stuff to cache for install # Copies stuff to cache for install
COPY ./package.json ./package-lock.json tsconfig.json ./ COPY ./package.json ./package-lock.json tsconfig.json ./