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