Thanu Poptiphueng
Thanu Poptiphueng
> +1 > > I'm working on a React application that behaves differently inside Playwright than inside the browser that runs directly on my host. It's pretty much impossible to...
Hello, have you found any workaround for this issues?
> The openssl crate needs the openssl library. Try using the `cgr.dev/chainguard/rust:latest-dev` image and adding `apk add openssl-dev` to your Dockerfile. (I've not tested this). Can confirm that this almost...
I found a better way to create the image. Here's my Dockerfile ```Dockerfile FROM cgr.dev/chainguard/rust:latest-dev AS build WORKDIR /app COPY . . USER root RUN apk update && apk add...