Hi!
When trying to deploy my Kotlin api, the Docker build fails right after the gradle build succeeds with the following error message:
│ BUILD SUCCESSFUL in 1m 47s
│ 5 actionable tasks: 5 executed
INFO[0114] Taking snapshot of files...
error building image: error building stage: failed to take snapshot: Failed to get file info for /root/.kotlin/daemon/kotlin-daemon.2024-07-10T18-30-07.756Z.dbc3a82d10b2eac98ec7254f3cca63bc.17553.run: lstat /root/.kotlin/daemon/kotlin-daemon.2024-07-10T18-30-07.756Z.dbc3a82d10b2eac98ec7254f3cca63bc.17553.run: no such file or directory
It runs locally, so I’m very confused about what is going wrong.
My Docker file looks like this:
FROM amazoncorretto:17.0.11-alpine AS _build
_COPY . /build/src
WORKDIR /build/src
RUN ./gradlew :server:buildFatJar --no-daemon
FROM amazoncorretto:17.0.11-alpine
EXPOSE 8080
RUN mkdir /app
COPY --from=_build_ /build/src/server/build/libs/*.jar /app/vacapp.jar
ENTRYPOINT ["java","-jar","/app/vacapp.jar"]
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
Added RUN ./gradlew clean
on the line before I build the jar and now it works. Still no idea why it failed in the first place, though. 🤷🏼
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.