summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTrainDoctor <traindoctor@protonmail.com>2022-07-27 16:52:49 -0700
committerTrainDoctor <traindoctor@protonmail.com>2022-09-18 12:11:26 -0700
commit328d3a83162832ecc21720ee031481d853b5c621 (patch)
tree516e208fe6e3affb4fc4af035392841677317d28
parent95ee2b54c723013530992beb005ac16e6898975d (diff)
downloaddecky-bazzite-buddy-328d3a83162832ecc21720ee031481d853b5c621.tar.gz
decky-bazzite-buddy-328d3a83162832ecc21720ee031481d853b5c621.zip
Add template dockerfile for testing
-rw-r--r--backend/Dockerfile13
1 files changed, 5 insertions, 8 deletions
diff --git a/backend/Dockerfile b/backend/Dockerfile
index f46e170..c4113b4 100644
--- a/backend/Dockerfile
+++ b/backend/Dockerfile
@@ -1,9 +1,6 @@
-# we support images for building with a vanilla SteamOS base,
-# or versions with ootb support for rust or go
-# developers can also customize these images via this Dockerfile
-#FROM ghcr.io/steamdeckhomebrew/holo-toolchain-rust:latest
-#FROM ghcr.io/steamdeckhomebrew/holo-toolchain-go:latest
-FROM ghcr.io/steamdeckhomebrew/holo-base:latest
+FROM arch:latest
-# entrypoint.sh should always be located in the backend folder
-ENTRYPOINT [ "/backend/entrypoint.sh" ] \ No newline at end of file
+ADD ./backend/ /source
+ADD ./build/backend /build
+
+WORKDIR /source \ No newline at end of file