From 5325f51269ffc834022cc3942606205b7be3f450 Mon Sep 17 00:00:00 2001 From: imnyang Date: Wed, 11 Mar 2026 15:13:31 +0000 Subject: [PATCH] =?UTF-8?q?=EC=A0=80=EB=8A=94=20=EC=A0=80=EB=8A=A5?= =?UTF-8?q?=EC=95=84=EC=9E=85=EB=8B=88=EB=8B=A4.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index deaf666..eb6c1b7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,7 +52,7 @@ RUN adduser \ USER imnyang # Copy only the compiled binary from the build stage. -COPY --from=build /bin/paste /app/ +COPY --from=build /bin/server /app/ # Rocket: listen on all interfaces inside the container. ENV ROCKET_ADDRESS=0.0.0.0 @@ -61,4 +61,4 @@ ENV ROCKET_ADDRESS=0.0.0.0 EXPOSE 8000 # Start the application. -CMD ["/app/paste"] \ No newline at end of file +CMD ["/app/server"] \ No newline at end of file