From 1504e878322d876a868bec40c00710af7d0ba4a4 Mon Sep 17 00:00:00 2001 From: Vasilica Olariu Date: Tue, 12 May 2026 12:23:55 +0300 Subject: [PATCH] fix docker file --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index ef0dd5d..3998fa3 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,6 +1,6 @@ # Use the base image with Node.js FROM node:22.13.1-alpine -RUN apk add --update --no-cache openssh-client git +RUN apk add --update --no-cache bash openssh-client git RUN mkdir -p -m 0600 ~/.ssh && ssh-keyscan github.com >> ~/.ssh/known_hosts # Copy the current directory into the Docker image COPY . /resources-api