Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
19 lines (14 sloc)
406 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
syntax = "proto3"; | |
package golem_task_api; | |
// workaround for the lack of constants | |
import "google/protobuf/descriptor.proto"; | |
extend google.protobuf.FileOptions { | |
string DOCKER_CPU_ENV_ID = 52000; | |
string DOCKER_GPU_ENV_ID = 52001; | |
} | |
option (DOCKER_CPU_ENV_ID) = 'docker_cpu'; | |
option (DOCKER_GPU_ENV_ID) = 'docker_gpu'; | |
message DockerPrerequisites { | |
string image = 1; | |
string tag = 2; | |
} |