skip to Main Content

crypto/ecdh: package crypto/ecdh is not in GOROOT (/usr/local/go/src/crypto/ecdh) in dunglas/symfony-docker

My dockerfile : #syntax=docker/dockerfile:1.4 # The different stages of this Dockerfile are meant to be built into separate images # https://docs.docker.com/develop/develop-images/multistage-build/#stop-at-a-specific-build-stage # https://docs.docker.com/compose/compose-file/#target # Builder images FROM composer/composer:2-bin AS composer FROM mlocati/php-extension-installer:latest AS php_extension_installer # Build Caddy with the Mercure…

VIEW QUESTION

Docker from scratch CMD bug

I have the following Dockerfile FROM golang as builder ARG CADDY_HASH=4b4e99bdb2e327d553a5f773f827f624181714af WORKDIR /root/caddy RUN wget -qO- github.com/caddyserver/caddy/archive/"$CADDY_HASH".tar.gz | tar zx --strip-components=1 RUN set -e; cd cmd/caddy && CGO_ENABLED=0 go build FROM scratch COPY --from=builder /root/caddy/cmd/caddy/caddy / ARG PORT=8000 ENV PORT…

VIEW QUESTION

Vite Reload Loop – Docker

I am trying to finish a migration away from Parcel and into Vite. We use caddy to reverse proxy a custom domain locally through a Docker container. The issue I'm having is that when I load the client in browser…

VIEW QUESTION

Caddy V2 IP whitelist – Nginx

I am trying to implement IP whitelist on my Caddy v2 configuration. Something equivalent to NGINX configuration like: allow 1.1.1.1; allow 8.8.8.8; deny all; My current Caddy configuration pretty straight forward: my.website.com { reverse_proxy http://127.0.0.1:3000 { } } Thanks

VIEW QUESTION
Back To Top
Search