# Copyright 2022 The Flutter Authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
# Dart Docker official images can be found here: https://hub.docker.com/_/dart | |
FROM dart:beta@sha256:a719c761acc751554a81f71ed78bff3ff3525b7df5e78e95d2a1c6403b663d4b | |
WORKDIR /app | |
# Copy app source code (except anything in .dockerignore). | |
COPY . . | |
RUN dart pub get | |
# Start server. | |
EXPOSE 8080 | |
CMD ["/usr/lib/dart/bin/dart", "/app/bin/server.dart"] |