blob: 5b322e35f161cb90bf7f247f17d2d7c5648ba1c5 [file] [log] [blame] [edit]
# 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:8f9ccb89e68772720fbedf48baf0f6cc1bf61a6d1fd9962c3a418adbd89bdca0
WORKDIR /cocoon_server
COPY cocoon_server .
WORKDIR /app
# Copy app source code (except anything in .dockerignore).
COPY app_dart .
RUN dart pub get
# Start server.
EXPOSE 8080
CMD ["/usr/lib/dart/bin/dart", "/app/bin/gae_server.dart"]