-
## Feature Request
### Description of Problem:
Using multi-stage builds in the creation of the images to optimise image sizes and start time
### Potential Solutions:
Leverage multistage builds…
-
today, the `add_dockerfile_with_renv` fonction create 2 Dockerfile tu be able to reuse the renv cache from the first image, in se second one.
like this :
```
docker build -f Dockerfile_base --…
-
Issue:
- [x] Currently the `production image` have an `enormous size`. Adding a multistage docker file to reduce the size of the image.
- [x] Reduces the image size drastically.
Proposed Solution…
-
Right now docker image goes upto 1.2 GB which is huge. We need to reduce it considerable using multistage docker build.
-
Hello,
I'd like to suggest improvements for the Dockerfile.
If we use it as is, the size of the resulting docker image is huge (mine was 1.307GB)
So I first made a multistage build
```
FR…
-
Is the only way to support multistage docker build cache like discussed [here](https://pythonspeed.com/articles/faster-multi-stage-builds/) to have separate docker builds in the skaffold build section…
-
Hello,
would like to know what are the right lib to copy after compiled yara && yara-python from sources.
```
FROM base-builder as yara-builder
RUN cd /tmp/ \
&& git clone --recursive https://g…
-
-
### 📜 Description
So i've setup a completely new backstage app using the npx command. After that I've configurated the github integration for our github enterprise instance. The last step was setti…
-
```
FROM agrdocker/agr_base_linux_env:latest as build-stage
WORKDIR /workdir/agr_ui
ADD . .
RUN npm install
ARG NODE_ENV=production
ENV NODE_ENV ${NODE_ENV}
ARG RELEASE=0.0.0
ENV RELEASE ${REL…