diff --git a/Dockerfile b/Dockerfile index e51df1d..9b959b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -35,6 +35,9 @@ RUN adduser \ # Copy the executable from the "build" stage. COPY ./bin/app /bin +# Copy Database migrations to the container +COPY ./database /bin + # Assign file to user and give execute flag to file RUN chown appuser /bin/app RUN chmod +x /bin/app