Skip to content

Commit 58e7297

Browse files
committed
remove_comments
1 parent 76da128 commit 58e7297

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

docker/Dockerfile

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
FROM php:7.4-apache
22

3-
# Copia Composer desde la imagen oficial en una etapa de construcción separada
43
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer
54

65
RUN apt update && apt install -y \
@@ -16,11 +15,9 @@ RUN docker-php-ext-install \
1615
COPY ./docker/vhost.conf /etc/apache2/sites-available/000-default.conf
1716
COPY ./ /var/www/html
1817

19-
# Instalar dependencias de Composer
2018
WORKDIR /var/www/html
2119
RUN composer install --no-dev --prefer-dist --optimize-autoloader
2220

23-
# Generar documentación de Swagger
2421
RUN php artisan l5-swagger:generate
2522

2623
RUN mkdir -p storage/framework/sessions

routes/api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
Route::delete('apps/{id}', 'ApplicationController@delete');
6565
Route::patch('apps/{id}', 'ApplicationController@update');
6666

67-
// Rutas adicionales para manejar el estado activo/inactivo
67+
// Routes for activating/deactivating applications
6868
Route::patch('apps/{id}/activate', 'ApplicationController@activate');
6969
Route::patch('apps/{id}/deactivate', 'ApplicationController@deactivate');
7070
Route::get('admin/apps', 'ApplicationController@getAllForAdmin');

0 commit comments

Comments
 (0)