diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 32b5f00..0000000 --- a/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -# get a base -FROM debian:trixie-slim - -# place the files into the image -WORKDIR /app -COPY . /app - -# Dependencies -RUN apt update -RUN apt install rustc cargo -y - -# Expose the port from docker-compose.yml -EXPOSE 5000 - -# Run the thing -CMD cargo run --manifest-path "/app/Cargo.toml" --release diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 951dcf0..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,9 +0,0 @@ -services: - crowdedgames: - restart: unless-stopped - build: - context: . - dockerfile: Dockerfile - image: crowdedgames:latest - ports: - - 5000:5000