Fix target folder path
All checks were successful
Deploy to VPS / deploy (push) Successful in 1m0s

This commit is contained in:
2025-11-06 19:46:49 +01:00
parent fb52e0ad83
commit a3cff93eea

View File

@@ -9,7 +9,7 @@ RUN apk add --no-cache curl && \
ENV PATH="/root/.cargo/bin:$PATH" ENV PATH="/root/.cargo/bin:$PATH"
COPY . /app COPY . /app
RUN cd /app && cargo build --release && cp /target/release/ssh-tui /app/tui RUN cd /app && cargo build --release && cp target/release/ssh-tui /app/tui
EXPOSE 22 EXPOSE 22
CMD ["/usr/local/bin/sshserver"] CMD ["/usr/local/bin/sshserver"]