fix(artifact_proxy): pull dependencies (#233)

This commit is contained in:
Felix Angelov
2023-04-05 23:04:35 -05:00
committed by GitHub
parent 67fcd0e05e
commit 23bcc4931a
+4 -1
View File
@@ -2,9 +2,12 @@
# Specify the Dart SDK base image version using dart:<version> (ex: dart:2.12)
FROM dart:stable AS build
# Resolve app dependencies.
WORKDIR /app
# Resolve app dependencies.
COPY pubspec.* ./
RUN dart pub get
# Copy app source code and AOT compile it.
COPY . .