From 839495cd2e10a9329ef4cd770db8573ddcdd88a8 Mon Sep 17 00:00:00 2001 From: Eero Ruohola Date: Thu, 15 Apr 2021 11:04:06 +0300 Subject: [PATCH] Unpin the Docker base image to make layer caching work in CI The action currently hash a bug where it won't work at all with images pulled by digest: https://github.com/satackey/action-docker-layer-caching/issues/17 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ccf11b326..e6e0ab8a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:15.10.0-buster-slim@sha256:2a351dd6e7236d277f51f00266cc1807791b217837392cfd39fa64c01cb6c094 AS base +FROM node:15.10.0-buster-slim AS base RUN groupadd --gid=10001 user \ && useradd --gid=user --uid=10000 --create-home user