From 2721848afaf3be6454dc046fbc93e7bf1719748f Mon Sep 17 00:00:00 2001 From: dylan <> Date: Fri, 29 Mar 2024 00:00:51 -0700 Subject: [PATCH] clean up docker file --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 67ee844..8724d1f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Installs Node image -FROM node:18-buster as base +FROM node:18-alpine as base # sets the working directory for any RUN, CMD, COPY command WORKDIR /app @@ -15,11 +15,11 @@ WORKDIR /app # intentionally here only for temporary cache-busting test # COPY ./client ./client -RUN apt-get update -RUN apt-get -y install libsdl2-dev -RUN apt-get -y install xorg-dev +# RUN apt-get update +# RUN apt-get -y install libsdl2-dev +# RUN apt-get -y install xorg-dev -COPY ./pico8 ./pico8 +# COPY ./pico8 ./pico8 # RUN echo "chmoding pico8" # RUN chmod +x ./usr/bin/pico8